Disassembler - перевод на испанский
DICLIB.COM
Языковые инструменты на ИИ
Введите слово или словосочетание на любом языке 👆
Язык:     

Перевод и анализ слов искусственным интеллектом

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Disassembler - перевод на испанский

COMPUTER PROGRAM THAT TRANSLATES MACHINE LANGUAGE INTO ASSEMBLY LANGUAGE
Disassembly; PE File Explorer; Commenting disassembler; List of disassemblers; Length disassembler; Length disassembler engine

Disassembler         
Desensamblar
disassembly         
(n.) = desensamblaje, desmontaje
Ex: Step-by-step procedures are described for the disassembly, reassembly, maintenance, and repair of submarine periscopes.
assembly1      
(n.) = montaje, ensamblaje
Ex: This is an application area of artificial intelligence that deals with the assembly of complex systems from a set of simple components.
----
* assembly language = lenguaje ensamblador
* assembly line = cadena de montaje
* assembly plant = planta de montaje
* car assembly line = línea de montaje de coches
* carriage assembly = ensamblaje de transporte
* disassembly [dis-assembly] = desensamblaje, desmontaje
* impression assembly = mecanismo de presión
* reassembly [re-assembly] = reensamblaje
* self-assembly = autoensamblaje

Определение

Packet Assembler/Disassembler
(PAD) Hardware or software device for splitting a data stream into discrete packets for transmission over some medium and then reforming the stream(s) at the receiver. The term is most often used for interfaces to X.25 lines. (1995-01-31)

Википедия

Disassembler

A disassembler is a computer program that translates machine language into assembly language—the inverse operation to that of an assembler. Disassembly, the output of a disassembler, is often formatted for human-readability rather than suitability for input to an assembler, making it principally a reverse-engineering tool. Common uses of disassemblers include recovering source code of a program whose original source was lost, malware analysis, modifying software (such as ROM hacking), and software cracking.

A disassembler differs from a decompiler, which targets a high-level language rather than an assembly language.

Assembly language source code generally permits the use of constants and programmer comments. These are usually removed from the assembled machine code by the assembler. If so, a disassembler operating on the machine code would produce disassembly lacking these constants and comments; the disassembled output becomes more difficult for a human to interpret than the original annotated source code. Some disassemblers provide a built-in code commenting feature where the generated output gets enriched with comments regarding called API functions or parameters of called functions. Some disassemblers make use of the symbolic debugging information present in object files such as ELF. For example, IDA allows the human user to make up mnemonic symbols for values or regions of code in an interactive session: human insight applied to the disassembly process often parallels human creativity in the code writing process.